Kameleon-Plus  0.3.2
Magnetogram.h
Go to the documentation of this file.
1 /*
2  * Magnetogram.h
3  *
4  * Created on: Sep 23, 2009
5  * Author: dberrios
6  */
7 
8 #ifndef MAGNETOGRAM_H_
9 #define MAGNETOGRAM_H_
10 
11 #include "Model.h"
12 #include "Interpolator.h"
13 
14 namespace ccmc
15 {
16 
23  class Magnetogram: public Model
24  {
25  public:
26  Magnetogram();
27  long open(const std::string& filename);
29 
30 
31  virtual ~Magnetogram();
32 
33  protected:
35  void initializeSIUnits();
36 
37  private:
38  //std::string r_string;
39  std::string lat_string;
40  std::string lon_string;
41  std::string filename;
42  };
43 }
44 
45 #endif /* MAGNETOGRAM_H_ */